home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / mhis020.zip / CALLDIR.MEX < prev    next >
Text File  |  1996-12-21  |  406b  |  21 lines

  1. #include <max.mh>
  2. #include "callers.mh"
  3. #include <max_menu.mh>
  4.  
  5. int main () {
  6.   read_callers ();
  7.   print (COL_WHITE, "\nNow listing ");
  8.   if (callers.forward_search) {
  9.     callers.forward_search := False;
  10.     print ("BACKWARD");
  11.     }
  12.   else {
  13.     callers.forward_search := True;
  14.     print ("FORWARD");
  15.     };
  16.   print ("\n\n");
  17.   menu_cmd (MNU_PRESS_ENTER,"");
  18.   write_callers ();
  19.   }
  20.  
  21.